func net/http.http2streamError

24 uses

	net/http (current package)
		h2_bundle.go#L1406: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L2578: 		return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
		h2_bundle.go#L2664: 		return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
		h2_bundle.go#L5373: 			sc.resetStream(http2streamError(st.id, http2ErrCodeNo))
		h2_bundle.go#L5586: 				return sc.countError("data_flow", http2streamError(f.Header().StreamID, http2ErrCodeFlowControl))
		h2_bundle.go#L5665: 			return sc.countError("bad_flow", http2streamError(f.StreamID, http2ErrCodeFlowControl))
		h2_bundle.go#L5690: 		sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
		h2_bundle.go#L5867: 			return sc.countError("data_flow", http2streamError(id, http2ErrCodeFlowControl))
		h2_bundle.go#L5875: 		return sc.countError("closed", http2streamError(id, http2ErrCodeStreamClosed))
		h2_bundle.go#L5884: 			return sc.countError("data_flow", http2streamError(id, http2ErrCodeFlowControl))
		h2_bundle.go#L5892: 		return sc.countError("send_too_much", http2streamError(id, http2ErrCodeProtocol))
		h2_bundle.go#L5897: 			return sc.countError("flow_on_data_length", http2streamError(id, http2ErrCodeFlowControl))
		h2_bundle.go#L6022: 			return sc.countError("headers_half_closed", http2streamError(id, http2ErrCodeStreamClosed))
		h2_bundle.go#L6050: 			return sc.countError("over_max_streams", http2streamError(id, http2ErrCodeProtocol))
		h2_bundle.go#L6057: 		return sc.countError("over_max_streams_race", http2streamError(id, http2ErrCodeRefusedStream))
		h2_bundle.go#L6139: 		return sc.countError("trailers_not_ended", http2streamError(st.id, http2ErrCodeProtocol))
		h2_bundle.go#L6143: 		return sc.countError("trailers_pseudo", http2streamError(st.id, http2ErrCodeProtocol))
		h2_bundle.go#L6152: 				return sc.countError("trailers_bogus", http2streamError(st.id, http2ErrCodeProtocol))
		h2_bundle.go#L6167: 		return sc.countError("priority", http2streamError(streamID, http2ErrCodeProtocol))
		h2_bundle.go#L6229: 		return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
		h2_bundle.go#L6235: 			return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
		h2_bundle.go#L6248: 		return nil, nil, sc.countError("bad_path_method", http2streamError(f.StreamID, http2ErrCodeProtocol))
		h2_bundle.go#L6295: 		return nil, nil, sc.countError(res.InvalidReason, http2streamError(st.id, http2ErrCodeProtocol))
		h2_bundle.go#L10260: 	serr := http2streamError(cs.ID, f.ErrCode)